home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 42 / Mac Magazin and MacEasy Magazine CD - Issue 42.iso / Software / Mobiles Büro / Newton / Accordian 1.0b / ADF Folder / Gulliver2.adf < prev    next >
Text File  |  1996-09-24  |  2KB  |  77 lines

  1. // Gulliver2 Application
  2. application "Gulliver2:TrueNorth" called "Gulliver" with options { "nofolders" "readonly" }
  3.  
  4. // Notes Soup
  5. //
  6. // Gulliver2.adf file for RCU 2.1
  7. // version 0.1 09-21-96
  8. // by Paolo Alberto Casadio
  9. // e-mail: pacasadio@linknet.it
  10. // Compuserve: 72431,362
  11.  
  12. // Gulliver2 Soup
  13. soup "Gulliver2:TrueNorth" called "To Do" of "Gulliver2:TrueNorth"
  14.  
  15. overview "gulliver:date" called "By Date" of "Gulliver2:TrueNorth" queries "beginDate" contains
  16.     {
  17.     column "Date" width 155 is beginDate
  18.     }
  19.     
  20. class "Gulliver2:TrueNorth" called "Trip" of "Gulliver2:TrueNorth" with options { "readonly" } contains
  21.     {
  22.     title: string called "Title"
  23.     beginDate: datetime called "Start Date"
  24.     endDate: datetime called "End Date"
  25.     purpose: string called "Purpose"
  26.     flight: array called "Trip segment" { entry called "Trip Segment" contains 
  27.             {
  28.             vendorName: string called "Vendor"
  29.             vendorNr: string called "Reference"
  30.             seat: string called "Seat/Cabin"    
  31.             depTime: datetime called "Dep. Time"
  32.             depCity: entry called "Dep. City" contains
  33.                 {
  34.                 name: string called "Name"
  35.                 }
  36.             stops: integer called "Stops"
  37.             arrTime: datetime called "Arr. Time"
  38.             arrCity: entry called "Arr. City" contains
  39.                 {
  40.                 name: string called "Name"
  41.                 }
  42.             }
  43.         }
  44.     hotel: array called "Hotel accomodation" { entry called "Hotel accomodation" contains
  45.             {
  46.             checkinDate: date called "Check in Date"
  47.             arriveBy: string called "Arrive by"
  48.             checkoutDate: date called "Check out Date"
  49.             name: string called "Name"
  50.             address: string called "Address"
  51.             phone: string called "Phone"
  52.             fax: string called "Fax"
  53.             confNr: string called "Confirmation Nr."
  54.             rate: integer called "Rate per Night"
  55.             }
  56.         }    
  57.     car: array called "Rented Car" { entry called "Rented Car" contains
  58.             {
  59.             name: string called "Name"
  60.             phone: string called "Phone"
  61.             pickupDate: date called "Pick up Date"
  62.             pickupCity: string called "Pick up City"
  63.             dropOffDate: date called "Drop off Date"
  64.             dropOffCity: string called "Drop off City"
  65.             confNr: string called "Confirmation Nr."
  66.             size: string called "Size"
  67.             doors: integer called "Doors"
  68.             air: boolean called "Air Conditioning"
  69.             automatic: boolean called "Automatic"
  70.             dailyRate: real called "Daily Rate"
  71.             milesRate: real called "Miles Rate"
  72.             freeMiles: string called "Free Miles"
  73.             }
  74.         }    
  75.     }
  76.     
  77.